home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / getpid.c,v < prev    next >
Text File  |  1991-09-29  |  2KB  |  96 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.1.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     88.11.17.13.30.40;  author ouster;  state Exp;
  11. branches 1.1.1.1;
  12. next     ;
  13.  
  14. 1.1.1.1
  15. date     91.09.29.19.14.36;  author kupfer;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24.  
  25. 1.1
  26. log
  27. @Initial revision
  28. @
  29. text
  30. @/* 
  31.  * getpid.c --
  32.  *
  33.  *    Source code for the getpid library procedure.
  34.  *
  35.  * Copyright 1988 Regents of the University of California
  36.  * Permission to use, copy, modify, and distribute this
  37.  * software and its documentation for any purpose and without
  38.  * fee is hereby granted, provided that the above copyright
  39.  * notice appear in all copies.  The University of California
  40.  * makes no representations about the suitability of this
  41.  * software for any purpose.  It is provided "as is" without
  42.  * express or implied warranty.
  43.  */
  44.  
  45. #ifndef lint
  46. static char rcsid[] = "$Header: proto.c,v 1.2 88/03/11 08:39:08 ouster Exp $ SPRITE (Berkeley)";
  47. #endif not lint
  48.  
  49. #include <sprite.h>
  50. #include <proc.h>
  51. #include "compatInt.h"
  52. /*
  53.  *----------------------------------------------------------------------
  54.  *
  55.  * getpid --
  56.  *
  57.  *    Procedure to map from Unix getpid system call to Sprite Proc_GetIDs.
  58.  *
  59.  * Results:
  60.  *    UNIX_ERROR is returned upon error, with the actual error code
  61.  *    stored in errno.  Upon success, the process ID of the current
  62.  *    process is returned.
  63.  *
  64.  * Side effects:
  65.  *    None.
  66.  *
  67.  *----------------------------------------------------------------------
  68.  */
  69.  
  70. int
  71. getpid()
  72. {
  73.     ReturnStatus status;    /* result returned by Proc_GetIDs */
  74.     int pid;            /* ID of current process */
  75.  
  76.     status = Proc_GetIDs(&pid, (int *) NULL, (int *) NULL, (int *) NULL);
  77.     if (status != SUCCESS) {
  78.     errno = Compat_MapCode(status);
  79.     return(UNIX_ERROR);
  80.     } else {
  81.     return(pid);
  82.     }
  83. }
  84. @
  85.  
  86.  
  87. 1.1.1.1
  88. log
  89. @Initial branch for Sprite server.
  90. @
  91. text
  92. @d17 1
  93. a17 1
  94. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/getpid.c,v 1.1 88/11/17 13:30:40 ouster Exp $ SPRITE (Berkeley)";
  95. @
  96.